" +
"");
writeln("
");
writeln("");
writeln("");
writeln(" | ");
writeln(" | ");
writeln("Table of all Match Results |
");
if (draw_the_table == true)
{
var tbl_head = "
";
anz_sp++;
tbl_head += "Device Name | ";
anz_sp++;
tbl_head += "Device Type | ";
for (var i=1; i < PropertyCounter; i++)
{
if ( out_vector[i]!="" && PropertyName[i]!="Device Type" && PropertyName[i]!="Device Name")
{
anz_sp++;
tbl_head += "" + PropertyName[i] + " | ";
} else {out_vector[i] = "";}
}
tbl_head += "
";
writeln("");
var SR_V;
var temp_sr = "";
for (var j = 1; j < MatcherHitList[0]+1; j++)
{
SR_V = ProductName[MatcherHitList[j]];
if ( SR_V != temp_sr )
{
temp_sr = SR_V;
writeln(tbl_head);
}
DrawHit(j, BODY.document, ignore_spnr);
}
}
writeln("